type github.com/go-faster/jx.value

28 uses

	github.com/go-faster/jx (current package)
		dec_num.go#L26: 		str, err := d.str(value{raw: true})
		dec_obj.go#L35: 	k, err := d.str(value{raw: isBuffer})
		dec_obj.go#L56: 		k, err := d.str(value{raw: isBuffer})
		dec_obj_iter.go#L64: 	k, err := dec.str(value{raw: i.isBuffer})
		dec_str.go#L13: 	v := value{
		dec_str.go#L24: type value struct {
		dec_str.go#L29: func (v value) rune(r rune) value {
		dec_str.go#L30: 	return value{
		dec_str.go#L36: func (d *Decoder) str(v value) (value, error) {
		dec_str.go#L38: 		return value{}, err
		dec_str.go#L115: 			return value{buf: str, raw: true}, nil
		dec_str.go#L117: 		return value{buf: append(v.buf, str...)}, nil
		dec_str.go#L122: 		return d.strSlow(value{buf: append(v.buf, str...)})
		dec_str.go#L128: func (d *Decoder) strSlow(v value) (value, error) {
		dec_str.go#L198: 				return value{}, io.ErrUnexpectedEOF
		dec_str.go#L200: 			return value{}, err
		dec_str.go#L210: 		return value{buf: append(v.buf, str...)}, nil
		dec_str.go#L215: 			return value{}, err
		dec_str.go#L231: 	v, err := d.str(value{raw: true})
		dec_str.go#L247: func (d *Decoder) escapedChar(v value, c byte) (value, error) {
		dec_str.go#L254: 			return value{}, errors.Wrap(err, "read u4")
		dec_str.go#L259: 				return value{}, err
		dec_str.go#L267: 				return value{}, err
		dec_str.go#L274: 				return value{}, err